home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / libsnmp-base.postinst < prev    next >
Encoding:
Text File  |  2007-02-07  |  212 b   |  12 lines

  1. #! /bin/sh
  2.  
  3. set -e
  4.  
  5. rm -f /usr/share/snmp/mibs/.index
  6. cd /usr/share/snmp/mibs
  7. for i in `ls -U`; do egrep "DEFINITIONS[ ]*::=[ ]*BEGIN" $i | ( read a b; if [ -n $a ]; then echo $a $i; fi); done > .index
  8.  
  9.  
  10.  
  11. exit 0
  12.